home *** CD-ROM | disk | FTP | other *** search
Text File | 2011-05-24 | 42.0 KB | 1,125 lines |
- <DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="videoPlayer" itemID="4785f8cc-00000203" sourceFlashFilepath="..\INTERFACES\CAP 109\main_cap.fla" sourceLibraryItemHRef="videoPlayer" sourceLastModified="1200922582" lastModified="1307350987" lastUniqueIdentifier="26">
- <timeline>
- <DOMTimeline name="videoPlayer" currentFrame="1">
- <layers>
- <DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
- <frames>
- <DOMFrame index="0" keyMode="9728">
- <Actionscript>
- <script><![CDATA[stop();
-
- var videoSizeSet = false;
-
- var selectorButtons:Array = Array(videoSelector.vidButton1, videoSelector.vidButton2, videoSelector.vidButton3, videoSelector.vidButton4, videoSelector.vidButton5, videoSelector.vidButton6, videoSelector.vidButton7, videoSelector.vidButton8, videoSelector.vidButton9);
- myVideoPlayer.playPauseButton = myPlayButton;
- myVideoPlayer.backButton = myBackButton;
-
- //function init() {
- trace("initialising video player");
-
- MovieClip(myVideoPlayer.getVideoPlayer(myVideoPlayer.activeVideoPlayerIndex))._video.smoothing = true;
-
- //myVideoPlayer.bufferingBar = myBufferBar;
-
-
-
- //setContentPath(_root.videoPath[0]);
-
- // SETUP THE VIDEO SELECTOR
-
- videoSelector._visible = false;
-
- /*
- Requires:
- - FLVPlayback component on the Stage with an instance name of my_FLVPlybk
- */
- //import mx.video.*;
- var listenerObject:Object = new Object();
- listenerObject.stateChange = function(eventObject:Object):Void {
- trace(myVideoPlayer.state+": playhead time is: "+myVideoPlayer.playheadTime);
- if (myVideoPlayer.state == "playing") {
- if (!videoSizeSet) {
- setVideoSize();
- }
- _root.flvPlaying = true;
- } else {
- _root.flvPlaying = false;
- }
- if (myVideoPlayer.state == "buffering") {
- trace("buffering");
- trace("w="+myVideoPlayer.metadata.width+" h="+myVideoPlayer.metadata.height);
- }
- //if (myVideoPlayer.state == "loading") {
- //flvPlaying = false;
- //setPlayHead();
- //}
- };
- myVideoPlayer.addEventListener("stateChange",listenerObject);
-
-
- import mx.video.*;
- var progressObject:Object = new Object();
- progressObject.progress = function(eventObject:Object):Void {
- if (myVideoPlayer.metadataLoaded) {
-
- vOff = 0;
- hOff = 0;
- viewAspect = 320.0/240.0;
- ht = myVideoPlayer.metadata.height;
- wd = myVideoPlayer.metadata.width;
-
- if (wd>ht) {
- ratio = 320.0/wd;
- vidAspect = ht/wd;
- vidWidth = wd*ratio;
- vidHeight = vidWidth*vidAspect;
- vOff = (240.0-vidHeight)/2;
- if (vidHeight>240.0) {
- // scale it down
- ratio = 240.0/ht;
- vidHeight = ht*ratio;
- vidWidth = wd*ratio;
- vOff = 0.0;
- hOff = (320.0-vidWidth)/2;
- }
- //vidHeight = 586.0*vidAspect;
- //vidWidth = 840 * ratio
-
- } else {
- ratio = 240.0/ht;
- vidAspect = wd/ht;
- vidWidth = 320.0*vidAspect;
- vidHeight = 240.0;
- hOff = (320.0-vidWidth)/2;
- }
- trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
- myVideoPlayer._width = vidWidth;
- myVideoPlayer._height = vidHeight;
- myVideoPlayer._x = hOff;
- myVideoPlayer._y = vOff;
- trace(vOff+" "+hOff);
- // Still Too High
- trace("Height is "+myVideoPlayer.metadata.height);
- trace("Width is "+myVideoPlayer.metadata.width);
- trace("Duration is "+myVideoPlayer.metadata.duration+" seconds");
- }
- };
- myVideoPlayer.addEventListener("progress",progressObject);
-
-
- dragBar.dragger.onPress = function() {
- //_root.pauseVideo(true)
- myVideoPlayer.pause();
- startDrag(dragBar.dragger, false, dragBar.bar._x-dragBar.bar._width, dragBar.bar._y, dragBar.bar._x, dragBar.bar._y);
- };
-
- dragBar.dragger.onRelease = function() {
-
- trace("settingplayhead");
- pc = 1.0+(dragBar.dragger._x/dragBar.bar._width);
- myVideoPlayer.playheadTime = (myVideoPlayer.totalTime*pc);
- //myVideoPlayer.playheadTime =
- myVideoPlayer.play();
- //_root.pauseVideo(false)
- stopDrag();
- };
-
-
- dragBar.dragger.onReleaseOutside = dragBar.dragger.onRelease;
-
- playHeadMover = setInterval(movePlayhead, 20, 0);
-
- //}
-
- function movePlayhead() {
- if (myVideoPlayer.state == "playing") {
- pc = myVideoPlayer.playheadTime/myVideoPlayer.totalTime;
- dragBar.dragger._x = -dragBar.bar._width+(dragBar.bar._width*pc);
- }
- }
-
- function setVideoSize() {
- trace("SET VIDEO SIZE CALLED ==-================");
-
- vOff = 0;
- hOff = 0;
- viewAspect = 320.0/240.0;
- ht = myVideoPlayer.metadata.height;
- wd = myVideoPlayer.metadata.width;
-
- if (wd>ht) {
- ratio = 320.0/wd;
- vidAspect = ht/wd;
- vidWidth = wd*ratio;
- vidHeight = vidWidth*vidAspect;
- vOff = (240.0-vidHeight)/2;
- if (vidHeight>240.0) {
- // scale it down
- ratio = 240.0/ht;
- vidHeight = ht*ratio;
- vidWidth = wd*ratio;
- vOff = 0.0;
- hOff = (320.0-vidWidth)/2;
- }
- //vidHeight = 586.0*vidAspect;
- //vidWidth = 840 * ratio
-
- } else {
- ratio = 240.0/ht;
- vidAspect = wd/ht;
- vidWidth = 320.0*vidAspect;
- vidHeight = 240.0;
- hOff = (320.0-vidWidth)/2;
- }
- trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
- myVideoPlayer._width = vidWidth;
- myVideoPlayer._height = vidHeight;
- myVideoPlayer._x = hOff;
- myVideoPlayer._y = vOff;
- trace(vOff+" "+hOff);
- // Still Too High
- trace("Height is "+myVideoPlayer.metadata.height);
- trace("Width is "+myVideoPlayer.metadata.width);
- trace("Duration is "+myVideoPlayer.metadata.duration+" seconds");
- videoSizeSet = true;
-
- }
-
-
- function setVideoLabels(num) {
- numVids = _root.videoResourceList.length;
-
- for (p=0; p<selectorButtons.length; p++) {
- selectorButtons[p]._visible = false;
- }
-
- for (i=0; i<_root.videoResourceList.length; i++) {
- trace("setting video selector "+_root.videoResourceList[i]);
- vidName = _root.videoResourceList[i];
- vidName = vidName.slice(0, -4);
- selectorButtons[i].vidName = vidName;
- selectorButtons[i]._visible = true;
- }
-
-
-
- }
-
- function setContentPath(path) {
- videoSizeSet = false;
- //import mx.video.*;
- trace("setting SMALL contentPath to:"+path+"|");
- //bigVideoPlayer.rewind()
- //bigVideoPlayer.pause()
- //bigVideoPlayer.contentPath = path;
- //bigVideoPlayer.load(path);
- tPath = path;
- myVideoPlayer.contentPath = tPath;
- //myVideoPlayer.load(mdm.Application.path+tPath)
- trace("contentPath is now "+myVideoPlayer.contentPath);
- myVideoPlayer.rewind()
- myVideoPlayer.play();
- //this.gotoAndStop(1)
- }]]></script>
- </Actionscript>
- <elements/>
- </DOMFrame>
- <DOMFrame index="1" keyMode="9728">
- <Actionscript>
- <script><![CDATA[stop();
-
- var selectorButtons:Array = Array(videoSelector.vidButton1, videoSelector.vidButton2, videoSelector.vidButton3, videoSelector.vidButton4, videoSelector.vidButton5, videoSelector.vidButton6, videoSelector.vidButton7, videoSelector.vidButton8, videoSelector.vidButton9);
- bigVideoPlayer.playPauseButton = bigPlayButton;
- bigVideoPlayer.backButton = bigBackButton;
-
-
- trace("initialising video player");
-
- //bigVideoPlayer.bufferingBar = myBufferBar;
- MovieClip(bigVideoPlayer.getVideoPlayer(bigVideoPlayer.activeVideoPlayerIndex))._video.smoothing = true;
-
-
- videoSelectHint._visible = true;
-
- //setContentPath(_root.videoPath[0]);
-
- // SETUP THE VIDEO SELECTOR
-
- videoSelector._visible = false;
-
- /*
- Requires:
- - FLVPlayback component on the Stage with an instance name of my_FLVPlybk
- */
- import mx.video.*;
- var listenerObject:Object = new Object();
- listenerObject.stateChange = function(eventObject:Object):Void {
- trace(bigVideoPlayer.state+": playhead time is: "+bigVideoPlayer.playheadTime);
- if (bigVideoPlayer.state == "playing") {
- _root.flvPlaying = true;
- } else {
- _root.flvPlaying = false;
- }
- //if (bigVideoPlayer.state == "loading") {
- //flvPlaying = false;
- //setPlayHead();
- //}
- };
- bigVideoPlayer.addEventListener("stateChange",listenerObject);
-
-
- import mx.video.*;
- var bigProgressObject:Object = new Object();
- bigProgressObject.progress = function(eventObject:Object):Void {
- if (bigVideoPlayer.metadataLoaded) {
-
- vOff = 0;
- hOff = 0;
- viewAspect = 874.0/560.0;
- ht = bigVideoPlayer.metadata.height;
- wd = bigVideoPlayer.metadata.width;
-
- if (wd>ht) {
- ratio = 874.0/wd;
- vidAspect = ht/wd;
- vidWidth = wd*ratio;
- vidHeight = vidWidth*vidAspect;
- vOff = (560.0-vidHeight)/2;
- if (vidHeight>560.0) {
- // scale it down
- ratio = 560.0/ht;
- vidHeight = ht*ratio;
- vidWidth = wd*ratio;
- vOff = 0.0;
- hOff = (874.0-vidWidth)/2;
- }
- //vidHeight = 586.0*vidAspect;
- //vidWidth = 840 * ratio
-
- } else {
- ratio = 586.0/ht;
- vidAspect = wd/ht;
- vidWidth = 840.0*vidAspect;
- vidHeight = 586.0;
- hOff = (840.0-vidWidth)/2;
- }
- trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
- bigVideoPlayer._width = vidWidth;
- bigVideoPlayer._height = vidHeight;
- bigVideoPlayer._x = hOff-474;
- bigVideoPlayer._y = vOff-267;
- trace(vOff+" "+hOff);
- // Still Too High
- trace("Height is "+bigVideoPlayer.metadata.height);
- trace("Width is "+bigVideoPlayer.metadata.width);
- trace("Duration is "+bigVideoPlayer.metadata.duration+" seconds");
- }
- };
- bigVideoPlayer.addEventListener("progress",bigProgressObject);
-
- dragBarBig.dragger.onPress = function() {
- //_root.pauseVideo(true)
- bigVideoPlayer.pause();
- startDrag(dragBarBig.dragger, false, dragBarBig.bar._x-dragBarBig.bar._width, dragBarBig.bar._y, dragBarBig.bar._x, dragBarBig.bar._y);
- };
- dragBarBig.dragger.onRelease = function() {
-
- trace("settingplayhead");
- pc = 1.0+(dragBarBig.dragger._x/dragBarBig.bar._width);
- bigVideoPlayer.playheadTime = (bigVideoPlayer.totalTime*pc);
- //bigVideoPlayer.playheadTime =
- bigVideoPlayer.play();
- //_root.pauseVideo(false)
- stopDrag();
- };
-
-
- dragBarBig.dragger.onReleaseOutside = dragBarBig.dragger.onRelease;
-
- playHeadMover = setInterval(movePlayhead, 20, 0);
-
- function setVideoSize() {
-
- vOff = 0;
- hOff = 0;
- viewAspect = 874.0/560.0;
- ht = bigVideoPlayer.metadata.height;
- wd = bigVideoPlayer.metadata.width;
-
- if (wd>ht) {
- ratio = 874.0/wd;
- vidAspect = ht/wd;
- vidWidth = wd*ratio;
- vidHeight = vidWidth*vidAspect;
- vOff = (560.0-vidHeight)/2;
- if (vidHeight>560.0) {
- // scale it down
- ratio = 560.0/ht;
- vidHeight = ht*ratio;
- vidWidth = wd*ratio;
- vOff = 0.0;
- hOff = (874.0-vidWidth)/2;
- }
- //vidHeight = 586.0*vidAspect;
- //vidWidth = 840 * ratio
-
- } else {
- ratio = 586.0/ht;
- vidAspect = wd/ht;
- vidWidth = 840.0*vidAspect;
- vidHeight = 586.0;
- hOff = (840.0-vidWidth)/2;
- }
- trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
- bigVideoPlayer._width = vidWidth;
- bigVideoPlayer._height = vidHeight;
- bigVideoPlayer._x = hOff-474;
- bigVideoPlayer._y = vOff-267;
- trace(vOff+" "+hOff);
- // Still Too High
- trace("Height is "+bigVideoPlayer.metadata.height);
- trace("Width is "+bigVideoPlayer.metadata.width);
- trace("Duration is "+bigVideoPlayer.metadata.duration+" seconds");
- }
-
- function movePlayhead() {
- if (bigVideoPlayer.state == "playing") {
- pc = bigVideoPlayer.playheadTime/bigVideoPlayer.totalTime;
- dragBarBig.dragger._x = -dragBarBig.bar._width+(dragBarBig.bar._width*pc);
- }
- }
-
- function setVideoLabels() {
- numVids = _root.videoResourceList.length;
-
- for (p=0; p<selectorButtons.length; p++) {
- selectorButtons[p]._visible = false;
- }
-
- for (i=0; i<_root.videoResourceList.length; i++) {
- trace("setting video selector "+_root.videoResourceList[i]);
- vidName = _root.videoResourceList[i];
- vidName = vidName.slice(0, -4);
- selectorButtons[i].vidName = vidName;
- selectorButtons[i]._visible = true;
- }
-
- }
-
- function setContentPath(path) {
- //import mx.video.*;
- trace("setting BIG VIDEO contentPath to:"+path+"|");
- //bigVideoPlayer.rewind()
- //bigVideoPlayer.pause()
- //bigVideoPlayer.contentPath = path;
- //bigVideoPlayer.load(path);
- tPath = path;
- bigVideoPlayer.contentPath = tPath;
- trace("contentPath is now "+bigVideoPlayer.contentPath);
- bigVideoPlayer.play();
- }]]></script>
- </Actionscript>
- <elements/>
- </DOMFrame>
- </frames>
- </DOMLayer>
- <DOMLayer name="Layer 5" color="#4FFFFF">
- <frames>
- <DOMFrame index="0" keyMode="9728">
- <elements/>
- </DOMFrame>
- <DOMFrame index="1" keyMode="9728">
- <elements>
- <DOMSymbolInstance libraryItemName="Symbol 11" name="videoSelectHint" centerPoint3DX="177.45" centerPoint3DY="297">
- <matrix>
- <Matrix tx="141.45" ty="286.5"/>
- </matrix>
- <transformationPoint>
- <Point x="58.5" y="10.5"/>
- </transformationPoint>
- </DOMSymbolInstance>
- </elements>
- </DOMFrame>
- </frames>
- </DOMLayer>
- <DOMLayer name="Layer 4" color="#FF4FFF">
- <frames>
- <DOMFrame index="0" keyMode="9728">
- <elements>
- <DOMSymbolInstance libraryItemName="Symbol 5" name="videoSelector">
- <matrix>
- <Matrix tx="85.45" ty="30.5"/>
- </matrix>
- <transformationPoint>
- <Point x="113.5" y="97"/>
- </transformationPoint>
- </DOMSymbolInstance>
- </elements>
- </DOMFrame>
- <DOMFrame index="1" keyMode="9728">
- <elements>
- <DOMSymbolInstance libraryItemName="Symbol 5" name="videoSelector">
- <matrix>
- <Matrix tx="74.55" ty="79.05"/>
- </matrix>
- <transformationPoint>
- <Point x="113.5" y="97"/>
- </transformationPoint>
- </DOMSymbolInstance>
- </elements>
- </DOMFrame>
- </frames>
- </DOMLayer>
- <DOMLayer name="Layer 3" color="#FFFF4F">
- <frames>
- <DOMFrame index="0" keyMode="9728">
- <elements>
- <DOMSymbolInstance libraryItemName="videoSelector" name="vidSelector" centerPoint3DX="270.95" centerPoint3DY="246.2">
- <matrix>
- <Matrix tx="261.7" ty="234.7"/>
- </matrix>
- <transformationPoint>
- <Point x="9.25" y="11.5"/>
- </transformationPoint>
- <Actionscript>
- <script><![CDATA[on (release) {
- _root.toggleVideoSelector()
- }
-
- ]]></script>
- </Actionscript>
- </DOMSymbolInstance>
- </elements>
- </DOMFrame>
- <DOMFrame index="1" keyMode="9728">
- <elements>
- <DOMSymbolInstance libraryItemName="videoSelector" name="vidSelector" centerPoint3DX="286.4" centerPoint3DY="317.75">
- <matrix>
- <Matrix a="1.634765625" d="1.634765625" tx="271.3" ty="298.95"/>
- </matrix>
- <transformationPoint>
- <Point x="9.25" y="11.5"/>
- </transformationPoint>
- <Actionscript>
- <script><![CDATA[on (release) {
- this._parent.videoSelectHint._visible = false
- _root.toggleVideoSelector()
- }
- ]]></script>
- </Actionscript>
- </DOMSymbolInstance>
- </elements>
- </DOMFrame>
- </frames>
- </DOMLayer>
- <DOMLayer name="Layer 1" color="#4FFF4F">
- <frames>
- <DOMFrame index="0" keyMode="9728">
- <elements>
- <DOMCompiledClipInstance libraryItemName="FLVPlayback" name="myVideoPlayer" uniqueID="1">
- <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
- <eventMap>
- <property name="bytesLoaded" value="progress" />
- <property name="bytesTotal" value="progress" />
- <property name="height" value="resize" />
- <property name="paused" value="stateChange" />
- <property name="playheadTime" value="playheadUpdate" />
- <property name="playing" value="stateChange" />
- <property name="preferredHeight" value="metadataReceived" />
- <property name="preferredWidth" value="metadataReceived" />
- <property name="scaleX" value="resize" />
- <property name="scaleY" value="resize" />
- <property name="state" value="stateChange" />
- <property name="stopped" value="stateChange" />
- <property name="totalTime" value="metadataReceived" />
- <property name="volume" value="volumeUpdate" />
- <property name="width" value="resize" />
- </eventMap>
- <property name="activeVideoPlayerIndex">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="bytesLoaded">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="bytesTotal">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="contentPath">
- <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxLength" value="" />
- <property name="minLength" value="" />
- </properties>
- </schema>
- </property>
- <property name="height">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="paused">
- <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- </properties>
- </schema>
- </property>
- <property name="playheadTime">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="playing">
- <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- </properties>
- </schema>
- </property>
- <property name="preferredHeight">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="preferredWidth">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="scaleX">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="scaleY">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="state">
- <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxLength" value="" />
- <property name="minLength" value="" />
- </properties>
- </schema>
- </property>
- <property name="stopped">
- <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- </properties>
- </schema>
- </property>
- <property name="totalTime">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="volume">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="width">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="x">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="y">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- </component>
- ]]></dataBindingXML>
- <parametersAsXML><![CDATA[ <property id="autoPlay">
- <Inspectable name="autoPlay" variable="autoPlay" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="autoRewind">
- <Inspectable name="autoRewind" variable="autoRewind" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="autoSize">
- <Inspectable name="autoSize" variable="autoSize" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="bufferTime">
- <Inspectable name="bufferTime" variable="bufferTime" category="" verbose="0" defaultValue="0.2" type="Number"/>
- </property>
- <property id="contentPath">
- <Inspectable name="contentPath" variable="contentPath" category="" verbose="0" defaultValue="" type="Video Content Path"/>
- </property>
- <property id="cuePoints">
- <Inspectable name="cuePoints" variable="cuePoints" category="" verbose="0" defaultValue="" type="Video Cue Points"/>
- </property>
- <property id="isLive">
- <Inspectable name="isLive" variable="isLive" category="" verbose="0" defaultValue="false" type="Boolean"/>
- </property>
- <property id="maintainAspectRatio">
- <Inspectable name="maintainAspectRatio" variable="maintainAspectRatio" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="skin">
- <Inspectable name="skin" variable="skin" category="" verbose="0" defaultValue="" type="Video Skin"/>
- </property>
- <property id="skinAutoHide">
- <Inspectable name="skinAutoHide" variable="skinAutoHide" category="" verbose="0" defaultValue="false" type="Boolean"/>
- </property>
- <property id="totalTime">
- <Inspectable name="totalTime" variable="totalTime" category="" verbose="0" defaultValue="0" type="Number"/>
- </property>
- <property id="version_1_0_2">
- <Inspectable name="version_1_0_2" variable="version_1_0_2" category="" verbose="0" defaultValue="" type="String"/>
- </property>
- <property id="volume">
- <Inspectable name="volume" variable="volume" category="" verbose="0" defaultValue="100" type="Number"/>
- </property>
- ]]></parametersAsXML>
- </DOMCompiledClipInstance>
- <DOMComponentInstance libraryItemName="PlayPauseButton" name="myPlayButton" uniqueID="2">
- <matrix>
- <Matrix a="0.744400024414063" d="0.745040893554688" tx="-0.2" ty="241.65"/>
- </matrix>
- <transformationPoint>
- <Point x="11.55" y="11.45"/>
- </transformationPoint>
- <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
- </component>
- ]]></dataBindingXML>
- </DOMComponentInstance>
- <DOMComponentInstance libraryItemName="BackButton" name="myBackButton" uniqueID="5">
- <matrix>
- <Matrix a="0.749832153320313" d="0.749008178710938" tx="18.3" ty="241"/>
- </matrix>
- <transformationPoint>
- <Point x="10.45" y="10.5"/>
- </transformationPoint>
- <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
- </component>
- ]]></dataBindingXML>
- </DOMComponentInstance>
- <DOMSymbolInstance libraryItemName="videoZoomButton" name="">
- <matrix>
- <Matrix a="0.225692749023438" d="0.225692749023438" tx="309.9" ty="252"/>
- </matrix>
- <transformationPoint>
- <Point x="-26.15" y="-24.8"/>
- </transformationPoint>
- </DOMSymbolInstance>
- <DOMSymbolInstance libraryItemName="dragBar" name="dragBar">
- <matrix>
- <Matrix a="0.878570556640625" d="2.34532165527344" tx="47.65" ty="245.35"/>
- </matrix>
- <transformationPoint>
- <Point x="115.25" y="1.75"/>
- </transformationPoint>
- </DOMSymbolInstance>
- </elements>
- </DOMFrame>
- <DOMFrame index="1" keyMode="9728">
- <elements>
- <DOMComponentInstance libraryItemName="PlayPauseButton" name="bigPlayButton" uniqueID="10">
- <matrix>
- <Matrix tx="-474.2" ty="312.2"/>
- </matrix>
- <transformationPoint>
- <Point x="11.3" y="11.15"/>
- </transformationPoint>
- <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
- </component>
- ]]></dataBindingXML>
- </DOMComponentInstance>
- <DOMComponentInstance libraryItemName="BackButton" name="bigBackButton" uniqueID="11">
- <matrix>
- <Matrix tx="-442.9" ty="311.8"/>
- </matrix>
- <transformationPoint>
- <Point x="11.25" y="11.25"/>
- </transformationPoint>
- <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
- </component>
- ]]></dataBindingXML>
- </DOMComponentInstance>
- <DOMSymbolInstance libraryItemName="videoZoomButton" name="">
- <matrix>
- <Matrix a="0.380706787109375" d="0.380706787109375" tx="353.45" ty="326.55"/>
- </matrix>
- <transformationPoint>
- <Point x="-26.25" y="-24.7"/>
- </transformationPoint>
- </DOMSymbolInstance>
- <DOMSymbolInstance libraryItemName="dragBar" name="dragBarBig">
- <matrix>
- <Matrix a="2.85211181640625" d="4.6236572265625" tx="-403.4" ty="315"/>
- </matrix>
- <transformationPoint>
- <Point x="115.15" y="1.75"/>
- </transformationPoint>
- </DOMSymbolInstance>
- <DOMCompiledClipInstance libraryItemName="FLVPlayback" name="bigVideoPlayer" uniqueID="24">
- <matrix>
- <Matrix a="2.73124694824219" d="2.44149780273438" tx="-490.6" ty="-286.65"/>
- </matrix>
- <transformationPoint>
- <Point x="160.1" y="120"/>
- </transformationPoint>
- <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
- <eventMap>
- <property name="bytesLoaded" value="progress" />
- <property name="bytesTotal" value="progress" />
- <property name="height" value="resize" />
- <property name="paused" value="stateChange" />
- <property name="playheadTime" value="playheadUpdate" />
- <property name="playing" value="stateChange" />
- <property name="preferredHeight" value="metadataReceived" />
- <property name="preferredWidth" value="metadataReceived" />
- <property name="scaleX" value="resize" />
- <property name="scaleY" value="resize" />
- <property name="state" value="stateChange" />
- <property name="stopped" value="stateChange" />
- <property name="totalTime" value="metadataReceived" />
- <property name="volume" value="volumeUpdate" />
- <property name="width" value="resize" />
- </eventMap>
- <property name="activeVideoPlayerIndex">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="bytesLoaded">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="bytesTotal">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="contentPath">
- <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxLength" value="" />
- <property name="minLength" value="" />
- </properties>
- </schema>
- </property>
- <property name="height">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="paused">
- <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- </properties>
- </schema>
- </property>
- <property name="playheadTime">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="playing">
- <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- </properties>
- </schema>
- </property>
- <property name="preferredHeight">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="preferredWidth">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="scaleX">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="scaleY">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="state">
- <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxLength" value="" />
- <property name="minLength" value="" />
- </properties>
- </schema>
- </property>
- <property name="stopped">
- <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- </properties>
- </schema>
- </property>
- <property name="totalTime">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="volume">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="width">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="x">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- <property name="y">
- <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
- <properties>
- <property name="defaultLabel" value="" />
- <property name="defaultUIControl" value="" />
- <property name="maxValue" value="" />
- <property name="minValue" value="" />
- </properties>
- </schema>
- </property>
- </component>
- ]]></dataBindingXML>
- <parametersAsXML><![CDATA[ <property id="autoPlay">
- <Inspectable name="autoPlay" variable="autoPlay" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="autoRewind">
- <Inspectable name="autoRewind" variable="autoRewind" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="autoSize">
- <Inspectable name="autoSize" variable="autoSize" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="bufferTime">
- <Inspectable name="bufferTime" variable="bufferTime" category="" verbose="0" defaultValue="0.1" type="Number"/>
- </property>
- <property id="contentPath">
- <Inspectable name="contentPath" variable="contentPath" category="" verbose="0" defaultValue="" type="Video Content Path"/>
- </property>
- <property id="cuePoints">
- <Inspectable name="cuePoints" variable="cuePoints" category="" verbose="0" defaultValue="" type="Video Cue Points"/>
- </property>
- <property id="isLive">
- <Inspectable name="isLive" variable="isLive" category="" verbose="0" defaultValue="false" type="Boolean"/>
- </property>
- <property id="maintainAspectRatio">
- <Inspectable name="maintainAspectRatio" variable="maintainAspectRatio" category="" verbose="0" defaultValue="true" type="Boolean"/>
- </property>
- <property id="skin">
- <Inspectable name="skin" variable="skin" category="" verbose="0" defaultValue="" type="Video Skin"/>
- </property>
- <property id="skinAutoHide">
- <Inspectable name="skinAutoHide" variable="skinAutoHide" category="" verbose="0" defaultValue="false" type="Boolean"/>
- </property>
- <property id="totalTime">
- <Inspectable name="totalTime" variable="totalTime" category="" verbose="0" defaultValue="0" type="Number"/>
- </property>
- <property id="version_1_0_2">
- <Inspectable name="version_1_0_2" variable="version_1_0_2" category="" verbose="0" defaultValue="" type="String"/>
- </property>
- <property id="volume">
- <Inspectable name="volume" variable="volume" category="" verbose="0" defaultValue="100" type="Number"/>
- </property>
- ]]></parametersAsXML>
- </DOMCompiledClipInstance>
- </elements>
- </DOMFrame>
- </frames>
- </DOMLayer>
- <DOMLayer name="Layer 6" color="#808080">
- <frames>
- <DOMFrame index="0" keyMode="9728">
- <elements/>
- </DOMFrame>
- <DOMFrame index="1" keyMode="9728">
- <elements>
- <DOMShape>
- <fills>
- <FillStyle index="1">
- <SolidColor/>
- </FillStyle>
- </fills>
- <edges>
- <Edge fillStyle1="1" edges="!7914 7093|-10050 7093!-10050 7093|-10050 -5910!-10050 -5910|7914 -5910!7914 -5910|7914 7093"/>
- </edges>
- </DOMShape>
- </elements>
- </DOMFrame>
- </frames>
- </DOMLayer>
- </layers>
- </DOMTimeline>
- </timeline>
- </DOMSymbolItem>